diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/menu-list/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/menu-list/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/menu-list/page.tsx b/app/[lng]/evcp/(evcp)/menu-list/page.tsx index 84138320..6f56a2de 100644 --- a/app/[lng]/evcp/(evcp)/menu-list/page.tsx +++ b/app/[lng]/evcp/(evcp)/menu-list/page.tsx @@ -9,7 +9,7 @@ import { InitializeButton } from "@/lib/menu-list/table/initialize-button"; import { MenuListTable } from "@/lib/menu-list/table/menu-list-table"; import { Shell } from "@/components/shell" import * as React from "react" - +import { InformationButton } from "@/components/information/information-button"; export default async function MenuListPage() { // 초기 데이터 로드 const [menusResult, usersResult] = await Promise.all([ @@ -22,9 +22,12 @@ export default async function MenuListPage() { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 메뉴 관리 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 메뉴 관리 + </h2> + <InformationButton pageCode="evcp/menu-list" /> + </div> <p className="text-muted-foreground"> 각 메뉴별로 담당자를 지정하고 관리할 수 있습니다. </p> |
